From 308a40d59c3b4091e84526a1103aa404ddf9e244 Mon Sep 17 00:00:00 2001 From: "arun.sharma@intel.com[kaf24]" Date: Tue, 24 May 2005 21:37:03 +0000 Subject: [PATCH] bitkeeper revision 1.1540 (42939e7f8_AuNACTheIei6BJ0yjKyA) [PATCH] xen.vncserver-quiet-configure.patch When configure looks for VNC Server library installation by executing libvncserver-config, make sure we don't print messages to the console if we cannot find the libvncserver-config program. Signed-off-by: Inaky Perez-Gonzalez Signed-off-by: Arun Sharma --- tools/ioemu/configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/ioemu/configure b/tools/ioemu/configure index 0ddebef64e..f766fbcc3a 100755 --- a/tools/ioemu/configure +++ b/tools/ioemu/configure @@ -230,7 +230,7 @@ fi if test -z "$vnc"; then -if libvncserver-config --version > /dev/null; then +if libvncserver-config --version >& /dev/null; then vnc=yes else vnc=no -- 2.30.2